home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia1.dir / 00638_Script_638 < prev    next >
Text File  |  1995-05-21  |  986b  |  41 lines

  1. on mouseDown
  2.   put "YesBtn" into f
  3.   put "YesBtnHL" into fHL
  4.   hiliter 12, f, fHL
  5.   puppetsound "button.aif"
  6.   updatestage
  7. end
  8.  
  9.  
  10.  
  11. on mouseUp
  12.   global gTheDay, whichOutcome, whoIsIt, yesOrNo, gMoney, bribe, themoviename
  13.   
  14.   set the castNum of sprite 12 = cast "YesBtn"
  15.   updatestage
  16.   
  17.   
  18.   if whoIsIt = "Skippy" then put "SkippyPayCont" into whichOutcome
  19.   if whoIsIt = "Phillip" then put "PhillipPayCont" into whichOutcome
  20.   
  21.   if gmoney < bribe then
  22.     set yesOrNo = "no"
  23.     set the castNum of sprite 14 to cast "NotEnoughMoney"
  24.     updatestage
  25.     if whoIsIt = "Skippy" then put "SkippyMugCont" into whichOutcome
  26.     if whoIsIt = "Phillip" then put "PhillipNoPayCont" into whichOutcome
  27.     startTimer
  28.     repeat while the timer < 60
  29.       nothing
  30.     end repeat
  31.     go to the frame + 1
  32.   else
  33.     set yesOrNo = "yes"
  34.     set gMoney = gmoney - bribe
  35.     go to the frame + 1
  36.   end if
  37.   puppetsprite 3, false
  38.   puppetsound 0
  39.   updatestage
  40. end
  41.